home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / quote523.zip / QUOTE.DOC < prev    next >
Text File  |  1991-05-23  |  2KB  |  54 lines

  1. >QUOTE.EXE is a small, fast liitle program that will read in an ASCII text
  2. >file and format the output into another file with the ">" marks everyone
  3. >is so fond of when replying to BBS messages.  It is intended for use with
  4. >COMMO 4.53, but it can be used by any terminal program that can execute a
  5. >shell program from a macro.
  6. >
  7. >It is conceptually based on the TRUNC12.ZIP program distributed by Mr.
  8. >Jim Goodenough of Santa Clara, California.  When I first used COMMO, I
  9. >was impressed by the speed and size of it.  I had previously used 
  10. >Telemate, and the difference was startling.  One of the features I
  11. >missed however, was the ability to automatically "quote" messages.
  12. >TRUNC12 answered this need, but it was unfortunately written in
  13. >compiled BASIC, had it's file names hard-coded into the program,
  14. >and was somewhat slow.  
  15. >
  16. >QUOTE is written in Turbo C.  It allows you to invoke it with your
  17. >own file names or rely on it's default selections.  It also does not
  18. >offer fancy "quoting" characters.  You have your choice, as long as
  19. >it is ">".  I found that many BBS programs would filter out high-ascii
  20. >characters as line noise when used with TRUNC.
  21. >
  22. >To use QUOTE, you should write a screen image to disk as a file, invoke
  23. >your favorite editor, save the file, run it through QUOTE and use 
  24. >ASCII upload to send the resultant file back.  Like magic, the quote
  25. >marks appear!  
  26. >
  27. >For COMMO, install the following lines in your COMMO.MAC file:
  28.  
  29.  {nf9} {screen y,quote.in} {}  
  30.  {nf0} {exec ted quote.in}     
  31.        {exec quote}         
  32.        {asciiup quote.out,:}
  33.        {}                   
  34.  
  35. >Pressing F9 will capture the message from your screen into file QUOTE.IN.
  36. >You then start the reply process on the remote BBS and press F10.  COMMO
  37. >will execute the editor (I use TED.COM from PC Magazine; use what you wish)
  38. >allowing you to trim out the extra lines you do not wish quoted.  When you
  39. >exit the editor, QUOTE will process the file and return to COMMO.  COMMO
  40. >will then ASCII upload the processed file to the BBS.  It's quite fast.
  41. >
  42. >If you do not use COMMO, you can call QUOTE any way you wish.  You can
  43. >invoke the program stand-alone as:
  44.  
  45. QUOTE INFILE.EXT OUTFILE.EXT
  46.  
  47. >...and create whatever macro your terminal program needs to automate this.
  48. >
  49. >As stated, QUOTE is small fast and dirty.  It works.  Enjoy it.
  50. >
  51. >Electrik Kool Aid
  52. >aka Don Kinstler
  53. >Binghamton, NY
  54. >May 23, 1991